Lấy danh sách command
Để lấy danh sách command bot, bạn vui lòng gọi api sau:
HTTP Request
GET https://{app_id}.api.piscale.com/chat-bot/v1.0/bots/{ext_bot_id}/commands
Parameters
Tên | Kiểu dữ liệu | Mô tả | Bắt buộc |
---|---|---|---|
ext_bot_id | string | Mã bot | ✓ |
Response
Ví dụ
{
"message_code": "M200",
"message": "Success",
"data": [
{
"command": "ask",
"description": "Muốn hỏi gì thì gõ cmd này nhé",
"quick_response": "",
"enable": true,
"created_at": 1691052827440,
"updated_at": 1691052827440,
"ext_bot_id": "6872016393266763"
},
{
"command": "bye",
"description": "BYEBYE",
"quick_response": "Hẹn gặp lại",
"enable": true,
"created_at": 1691052763263,
"updated_at": 1691052763263,
"ext_bot_id": "6872016393266763"
},
{
"command": "xinchao",
"description": "Đây là lời chào hỏi",
"quick_response": "Chào bạn, tui là bot nè",
"enable": false,
"created_at": 1691051662973,
"updated_at": 1697085792594,
"ext_bot_id": "6872016393266763"
}
]
}
Tên | Kiểu dữ liệu | Mô tả |
---|---|---|
message_code | string | Mã thông điệp. Xem chi tiết |
message | string | Nội dung mã thông điệp |
data[i].command | string | Command |
data[i].description | string | Mô tả command |
data[i].quick_response | string | Phản hồi nhanh với command |
data[i].enable | boolean | Trạng thái của hoạt động của command |
data[i].created_at | number | Thời gian tạo |
data[i].updated_at | number | Thời gian cập nhật |
data[i].ext_bot_id | string | Command được sử dụng cho bot nào |